chore: align build tooling (purescript-overlay, nix CI, Lua 5.1)#1
Merged
Conversation
Migrate the dev shell from easy-purescript-nix to purescript-overlay so plain `nix develop` evaluates (easy-ps pulled EOL nodejs marked insecure, breaking CI). Drop purs-tidy, use the overlay purs 0.15.16 + legacy spago 0.21, pin Lua 5.1 (the pslua target runtime), and replace the inherited bower CI with the canonical nix workflow. (purescript-lua/purescript-lua#54)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Pilots the purescript-overlay migration (purescript-lua/purescript-lua#54) and the canonical nix-CI normalization. Plain
nix developnow evaluates without --impure (the insecure-nodejs blocker is gone), build/luacheck green.While bringing the build green on the pinned Lua 5.1 toolchain, two pre-existing blockers in the fork had to be fixed in the same branch: the package set pointed at a deleted draft release (404), so it was bumped to the current
upstream-ps // upstream-luacomposition and the deps renamed from the oldlua-prelude/lua-newtypeto the canonicalprelude/newtype; andsrc/Control/Extend.luausedtable.unpack(Lua 5.2+, undefined on the 5.1 target — luacheck flagged it once 5.1 was pinned) plus an FFI shape the pslua linker rejected, so it was rewritten to a 5.1-correct paren-wrapped closure that builds the suffix sub-array explicitly.